home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-20 | 620 b | 21 lines | [TEXT/CWIE] |
- // File: ComputeLength.h
-
-
- #include <Types.h>
- #include <GXMath.h>
- #include <GXTypes.h>
-
-
-
-
-
- //-----------------------------------------------------------------
- // Prototypes:
-
- double GetCurveLength(gxCurve *theCurve);
- double GetLineLength(gxLine *theLine);
- void CurveLengthToPoint(double theLength, gxCurve *theCurve, gxPoint *thePoint, gxPoint *theTangent);
- void LineLengthToPoint(double theLength, gxLine *theLine, gxPoint *thePoint, gxPoint *theTangent );
- void DetermineSubCurve(gxCurve *theCurve, double a, double b, gxCurve *subCurve);
- void DetermineSubLine(gxLine *theLine, double a, double b, gxLine *subLine);
-